home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Modules / BackSpaceModules / Source / WallPaperView / WallPaperView.h < prev    next >
Text File  |  1993-06-28  |  423b  |  30 lines

  1. #import <appkit/View.h>
  2.  
  3. @interface WallPaperView : View
  4. {
  5.     id image;
  6.     id inspector;
  7.     id wildness;
  8.     id brightness;
  9.  
  10.     float step;
  11.     NXSize size;
  12. }
  13.  
  14. - initFrame:(NXRect *) frameRect;
  15. - drawSelf:(const NXRect *) rects :(int) rectCount;
  16. - free;
  17.  
  18. - tessellate;
  19.  
  20. - oneStep;
  21. - inspector:sender;
  22. - (BOOL) useBufferedWindow;
  23. - (const char *) windowTitle;
  24.  
  25. - setDefault:sender;
  26. - setWildness:anObject;
  27. - setBrightness:anObject;
  28.  
  29. @end
  30.